EqualMatrix
TheEqualMatrix
function compares two matrices and returns a result that indicates whether the matrices are equal.
pascal Boolean EqualMatrix (const MatrixRecord *m1, const MatrixRecord *m2);
m1
- Contains a pointer to one matrix for the compare operation.
m2
- Contains a pointer to the other matrix for the compare operation.
DESCRIPTION
TheEqualMatrix
function returns a Boolean value that indicates whether the specified matrices are equal. If the matrices are equal, the function sets this returned value totrue
. Otherwise, it sets the returned value tofalse
.ERROR CODES
None